home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
usr
/
lib
/
tasksel
/
tests
/
laptop
< prev
next >
Wrap
Text File
|
2008-10-10
|
265b
|
14 lines
#!/bin/sh
# Causes a task to be selected if the machine appears to be a laptop.
if [ "$NEW_INSTALL" ]; then
if which laptop-detect >/dev/null 2>&1 && \
laptop-detect; then
exit 2 # mark for install
else
exit 3 # do not mark for install
fi
else
exit 3
fi